home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / komunikace / k-ninja / setup-kninja_v2.exe / {app} / components / nsProxyAutoConfig.js < prev    next >
Text File  |  2006-06-19  |  14KB  |  397 lines

  1. /* -*- Mode: Java; tab-width: 4; c-basic-offset: 4; -*- */
  2. /* vim:set ts=4 sw=4 sts=4 et: */
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is mozilla.org code.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Akhil Arora <akhil.arora@sun.com>
  25.  *   Tomi Leppikangas <Tomi.Leppikangas@oulu.fi>
  26.  *   Darin Fisher <darin@meer.net>
  27.  *
  28.  * Alternatively, the contents of this file may be used under the terms of
  29.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  30.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.  * in which case the provisions of the GPL or the LGPL are applicable instead
  32.  * of those above. If you wish to allow use of your version of this file only
  33.  * under the terms of either the GPL or the LGPL, and not to allow others to
  34.  * use your version of this file under the terms of the MPL, indicate your
  35.  * decision by deleting the provisions above and replace them with the notice
  36.  * and other provisions required by the GPL or the LGPL. If you do not delete
  37.  * the provisions above, a recipient may use your version of this file under
  38.  * the terms of any one of the MPL, the GPL or the LGPL.
  39.  *
  40.  * ***** END LICENSE BLOCK ***** */
  41.  
  42. /*
  43.    Script for Proxy Auto Config in the new world order.
  44.        - Gagan Saksena 04/24/00 
  45. */
  46.  
  47. const kDNS_CONTRACTID = "@mozilla.org/network/dns-service;1";
  48. const kPAC_CONTRACTID = "@mozilla.org/network/proxy-auto-config;1";
  49. const kPAC_CID = Components.ID("{63ac8c66-1dd2-11b2-b070-84d00d3eaece}");
  50.  
  51. const nsISupports        = Components.interfaces.nsISupports;
  52. const nsIProxyAutoConfig = Components.interfaces.nsIProxyAutoConfig;
  53. const nsIDNSService      = Components.interfaces.nsIDNSService;
  54.  
  55. // implementor of nsIProxyAutoConfig
  56. function nsProxyAutoConfig() {};
  57.  
  58. nsProxyAutoConfig.prototype = {
  59.     // sandbox in which we eval loaded autoconfig js file
  60.     _sandBox: null, 
  61.  
  62.     // ptr to eval'ed FindProxyForURL function
  63.     _findProxyForURL: null,
  64.  
  65.     QueryInterface: function(iid) {
  66.         if (iid.Equals(nsIProxyAutoConfig) ||
  67.             iid.Equals(nsISupports))
  68.             return this;
  69.         throw Components.results.NS_ERROR_NO_INTERFACE;
  70.     },
  71.  
  72.     init: function(pacURI, pacText) {
  73.         // remove PAC configuration if requested
  74.         if (pacURI == "" || pacText == "") {
  75.             this._findProxyForURL = null;
  76.             this._sandBox = null;
  77.             return;
  78.         }
  79.  
  80.         // allocate a fresh Sandbox to clear global scope for new PAC script
  81.         this._sandBox = new Components.utils.Sandbox(pacURI);
  82.         Components.utils.evalInSandbox(pacUtils, this._sandBox);
  83.  
  84.         // add predefined functions to pac
  85.         this._sandBox.importFunction(myIpAddress);
  86.         this._sandBox.importFunction(dnsResolve);
  87.         this._sandBox.importFunction(proxyAlert, "alert");
  88.  
  89.         // evaluate loaded js file
  90.         Components.utils.evalInSandbox(pacText, this._sandBox);
  91.         this._findProxyForURL = this._sandBox.FindProxyForURL;
  92.     },
  93.  
  94.     getProxyForURI: function(testURI, testHost) {
  95.         if (!this._findProxyForURL)
  96.             return null;
  97.  
  98.         // Call the original function
  99.         return this._findProxyForURL.call(this._sandBox, testURI, testHost);
  100.     }
  101. }
  102.  
  103. function proxyAlert(msg) {
  104.     try {
  105.         // It would appear that the console service is threadsafe.
  106.         var cns = Components.classes["@mozilla.org/consoleservice;1"]
  107.                             .getService(Components.interfaces.nsIConsoleService);
  108.         cns.logStringMessage("PAC-alert: "+msg);
  109.     } catch (e) {
  110.         dump("PAC: proxyAlert ERROR: "+e+"\n");
  111.     }
  112. }
  113.  
  114. // wrapper for getting local IP address called by PAC file
  115. function myIpAddress() {
  116.     try {
  117.         return dns.resolve(dns.myHostName, 0).getNextAddrAsString();
  118.     } catch (e) {
  119.         return '127.0.0.1';
  120.     }
  121. }
  122.  
  123. // wrapper for resolving hostnames called by PAC file
  124. function dnsResolve(host) {
  125.     try {
  126.         return dns.resolve(host, 0).getNextAddrAsString();
  127.     } catch (e) {
  128.         return null;
  129.     }
  130. }
  131.  
  132. var pacModule = new Object();
  133.  
  134. pacModule.registerSelf =
  135.     function (compMgr, fileSpec, location, type) {
  136.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  137.         compMgr.registerFactoryLocation(kPAC_CID,
  138.                                         "nsProxyAutoConfig",
  139.                                         kPAC_CONTRACTID,
  140.                                         fileSpec, 
  141.                                         location, 
  142.                                         type);
  143.     }
  144.  
  145. pacModule.getClassObject =
  146. function (compMgr, cid, iid) {
  147.         if (!cid.equals(kPAC_CID))
  148.             throw Components.results.NS_ERROR_NO_INTERFACE;
  149.  
  150.         if (!iid.equals(Components.interfaces.nsIFactory))
  151.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  152.  
  153.         return pacFactory;
  154.     }
  155.  
  156. pacModule.canUnload =
  157.     function (compMgr) {
  158.         return true;
  159.     }
  160.  
  161. var pacFactory = new Object();
  162. pacFactory.createInstance =
  163.     function (outer, iid) {
  164.         if (outer != null)
  165.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  166.  
  167.         if (!iid.equals(nsIProxyAutoConfig) &&
  168.             !iid.equals(Components.interfaces.nsISupports)) {
  169.             throw Components.results.NS_ERROR_NO_INTERFACE;
  170.         }
  171.         return pac;
  172.     }
  173.  
  174. function NSGetModule(compMgr, fileSpec) {
  175.     return pacModule;
  176. }
  177.  
  178. var pac = new nsProxyAutoConfig() ;
  179. var dns = Components.classes[kDNS_CONTRACTID].getService(nsIDNSService);
  180.  
  181. var pacUtils = 
  182. "function dnsDomainIs(host, domain) {\n" +
  183. "    return (host.length >= domain.length &&\n" +
  184. "            host.substring(host.length - domain.length) == domain);\n" +
  185. "}\n" +
  186.  
  187. "function dnsDomainLevels(host) {\n" +
  188. "    return host.split('.').length-1;\n" +
  189. "}\n" +
  190.  
  191. "function convert_addr(ipchars) {\n"+
  192. "    var bytes = ipchars.split('.');\n"+
  193. "    var result = ((bytes[0] & 0xff) << 24) |\n"+
  194. "                 ((bytes[1] & 0xff) << 16) |\n"+
  195. "                 ((bytes[2] & 0xff) <<  8) |\n"+
  196. "                  (bytes[3] & 0xff);\n"+
  197. "    return result;\n"+
  198. "}\n"+
  199.  
  200. "function isInNet(ipaddr, pattern, maskstr) {\n"+
  201. "    var test = /^(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})$/(ipaddr);\n"+
  202. "    if (test == null) {\n"+
  203. "        ipaddr = dnsResolve(ipaddr);\n"+
  204. "        if (ipaddr == null)\n"+
  205. "            return false;\n"+
  206. "    } else if (test[1] > 255 || test[2] > 255 || \n"+
  207. "               test[3] > 255 || test[4] > 255) {\n"+
  208. "        return false;    // not an IP address\n"+
  209. "    }\n"+
  210. "    var host = convert_addr(ipaddr);\n"+
  211. "    var pat  = convert_addr(pattern);\n"+
  212. "    var mask = convert_addr(maskstr);\n"+
  213. "    return ((host & mask) == (pat & mask));\n"+
  214. "    \n"+
  215. "}\n"+
  216.  
  217. "function isPlainHostName(host) {\n" +
  218. "    return (host.search('\\\\.') == -1);\n" +
  219. "}\n" +
  220.  
  221. "function isResolvable(host) {\n" +
  222. "    var ip = dnsResolve(host);\n" +
  223. "    return (ip != null);\n" +
  224. "}\n" +
  225.  
  226. "function localHostOrDomainIs(host, hostdom) {\n" +
  227. "    return (host == hostdom) ||\n" +
  228. "           (hostdom.lastIndexOf(host + '.', 0) == 0);\n" +
  229. "}\n" +
  230.  
  231. "function shExpMatch(url, pattern) {\n" +
  232. "   pattern = pattern.replace(/\\./g, '\\\\.');\n" +
  233. "   pattern = pattern.replace(/\\*/g, '.*');\n" +
  234. "   pattern = pattern.replace(/\\?/g, '.');\n" +
  235. "   var newRe = new RegExp('^'+pattern+'$');\n" +
  236. "   return newRe.test(url);\n" +
  237. "}\n" +
  238.  
  239. "var wdays = new Array('SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT');\n" +
  240.  
  241. "var monthes = new Array('JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC');\n"+
  242.  
  243. "function weekdayRange() {\n" +
  244. "    function getDay(weekday) {\n" +
  245. "        for (var i = 0; i < 6; i++) {\n" +
  246. "            if (weekday == wdays[i]) \n" +
  247. "                return i;\n" +
  248. "        }\n" +
  249. "        return -1;\n" +
  250. "    }\n" +
  251. "    var date = new Date();\n" +
  252. "    var argc = arguments.length;\n" +
  253. "    var wday;\n" +
  254. "    if (argc < 1)\n" +
  255. "        return false;\n" +
  256. "    if (arguments[argc - 1] == 'GMT') {\n" +
  257. "        argc--;\n" +
  258. "        wday = date.getUTCDay();\n" +
  259. "    } else {\n" +
  260. "        wday = date.getDay();\n" +
  261. "    }\n" +
  262. "    var wd1 = getDay(arguments[0]);\n" +
  263. "    var wd2 = (argc == 2) ? getDay(arguments[1]) : wd1;\n" +
  264. "    return (wd1 == -1 || wd2 == -1) ? false\n" +
  265. "                                    : (wd1 <= wday && wday <= wd2);\n" +
  266. "}\n" +
  267.  
  268. "function dateRange() {\n" +
  269. "    function getMonth(name) {\n" +
  270. "        for (var i = 0; i < 6; i++) {\n" +
  271. "            if (name == monthes[i])\n" +
  272. "                return i;\n" +
  273. "        }\n" +
  274. "        return -1;\n" +
  275. "    }\n" +
  276. "    var date = new Date();\n" +
  277. "    var argc = arguments.length;\n" +
  278. "    if (argc < 1) {\n" +
  279. "        return false;\n" +
  280. "    }\n" +
  281. "    var isGMT = (arguments[argc - 1] == 'GMT');\n" +
  282. "\n" +
  283. "    if (isGMT) {\n" +
  284. "        argc--;\n" +
  285. "    }\n" +
  286. "    // function will work even without explict handling of this case\n" +
  287. "    if (argc == 1) {\n" +
  288. "        var tmp = parseInt(arguments[0]);\n" +
  289. "        if (isNaN(tmp)) {\n" +
  290. "            return ((isGMT ? date.getUTCMonth() : date.getMonth()) ==\n" +
  291. "getMonth(arguments[0]));\n" +
  292. "        } else if (tmp < 32) {\n" +
  293. "            return ((isGMT ? date.getUTCDate() : date.getDate()) == tmp);\n" +
  294. "        } else { \n" +
  295. "            return ((isGMT ? date.getUTCFullYear() : date.getFullYear()) ==\n" +
  296. "tmp);\n" +
  297. "        }\n" +
  298. "    }\n" +
  299. "    var year = date.getFullYear();\n" +
  300. "    var date1, date2;\n" +
  301. "    date1 = new Date(year,  0,  1,  0,  0,  0);\n" +
  302. "    date2 = new Date(year, 11, 31, 23, 59, 59);\n" +
  303. "    var adjustMonth = false;\n" +
  304. "    for (var i = 0; i < (argc >> 1); i++) {\n" +
  305. "        var tmp = parseInt(arguments[i]);\n" +
  306. "        if (isNaN(tmp)) {\n" +
  307. "            var mon = getMonth(arguments[i]);\n" +
  308. "            date1.setMonth(mon);\n" +
  309. "        } else if (tmp < 32) {\n" +
  310. "            adjustMonth = (argc <= 2);\n" +
  311. "            date1.setDate(tmp);\n" +
  312. "        } else {\n" +
  313. "            date1.setFullYear(tmp);\n" +
  314. "        }\n" +
  315. "    }\n" +
  316. "    for (var i = (argc >> 1); i < argc; i++) {\n" +
  317. "        var tmp = parseInt(arguments[i]);\n" +
  318. "        if (isNaN(tmp)) {\n" +
  319. "            var mon = getMonth(arguments[i]);\n" +
  320. "            date2.setMonth(mon);\n" +
  321. "        } else if (tmp < 32) {\n" +
  322. "            date2.setDate(tmp);\n" +
  323. "        } else {\n" +
  324. "            date2.setFullYear(tmp);\n" +
  325. "        }\n" +
  326. "    }\n" +
  327. "    if (adjustMonth) {\n" +
  328. "        date1.setMonth(date.getMonth());\n" +
  329. "        date2.setMonth(date.getMonth());\n" +
  330. "    }\n" +
  331. "    if (isGMT) {\n" +
  332. "    var tmp = date;\n" +
  333. "        tmp.setFullYear(date.getUTCFullYear());\n" +
  334. "        tmp.setMonth(date.getUTCMonth());\n" +
  335. "        tmp.setDate(date.getUTCDate());\n" +
  336. "        tmp.setHours(date.getUTCHours());\n" +
  337. "        tmp.setMinutes(date.getUTCMinutes());\n" +
  338. "        tmp.setSeconds(date.getUTCSeconds());\n" +
  339. "        date = tmp;\n" +
  340. "    }\n" +
  341. "    return ((date1 <= date) && (date <= date2));\n" +
  342. "}\n" +
  343.  
  344. "function timeRange() {\n" +
  345. "    var argc = arguments.length;\n" +
  346. "    var date = new Date();\n" +
  347. "    var isGMT= false;\n"+
  348. "\n" +
  349. "    if (argc < 1) {\n" +
  350. "        return false;\n" +
  351. "    }\n" +
  352. "    if (arguments[argc - 1] == 'GMT') {\n" +
  353. "        isGMT = true;\n" +
  354. "        argc--;\n" +
  355. "    }\n" +
  356. "\n" +
  357. "    var hour = isGMT ? date.getUTCHours() : date.getHours();\n" +
  358. "    var date1, date2;\n" +
  359. "    date1 = new Date();\n" +
  360. "    date2 = new Date();\n" +
  361. "\n" +
  362. "    if (argc == 1) {\n" +
  363. "        return (hour == arguments[0]);\n" +
  364. "    } else if (argc == 2) {\n" +
  365. "        return ((arguments[0] <= hour) && (hour <= arguments[1]));\n" +
  366. "    } else {\n" +
  367. "        switch (argc) {\n" +
  368. "        case 6:\n" +
  369. "            date1.setSeconds(arguments[2]);\n" +
  370. "            date2.setSeconds(arguments[5]);\n" +
  371. "        case 4:\n" +
  372. "            var middle = argc >> 1;\n" +
  373. "            date1.setHours(arguments[0]);\n" +
  374. "            date1.setMinutes(arguments[1]);\n" +
  375. "            date2.setHours(arguments[middle]);\n" +
  376. "            date2.setMinutes(arguments[middle + 1]);\n" +
  377. "            if (middle == 2) {\n" +
  378. "                date2.setSeconds(59);\n" +
  379. "            }\n" +
  380. "            break;\n" +
  381. "        default:\n" +
  382. "          throw 'timeRange: bad number of arguments'\n" +
  383. "        }\n" +
  384. "    }\n" +
  385. "\n" +
  386. "    if (isGMT) {\n" +
  387. "        date.setFullYear(date.getUTCFullYear());\n" +
  388. "        date.setMonth(date.getUTCMonth());\n" +
  389. "        date.setDate(date.getUTCDate());\n" +
  390. "        date.setHours(date.getUTCHours());\n" +
  391. "        date.setMinutes(date.getUTCMinutes());\n" +
  392. "        date.setSeconds(date.getUTCSeconds());\n" +
  393. "    }\n" +
  394. "    return ((date1 <= date) && (date <= date2));\n" +
  395. "}\n"
  396.  
  397.